翻訳と辞書
Words near each other
・ Gostynin
・ Gostynin County
・ Gostynin Land
・ Gostynin-Włocławek Landscape Park
・ Gostyń
・ Gostyń (disambiguation)
・ Gostyń County
・ Gostyń Łobeski
・ Gostyń, Lower Silesian Voivodeship
・ Gostyń, Silesian Voivodeship
・ Gostyń, West Pomeranian Voivodeship
・ Gostyński Bród
・ Gostënckë
・ Gosu
・ Gosu (disambiguation)
Gosu (library)
・ Gosu (programming language)
・ Gosu Cave
・ GOSUB
・ Gosudarev Rodoslovets
・ Gosure
・ Goswa
・ Goswami
・ Goswami Ganesh Dutta Sanatan Dharma College
・ Goswara
・ Goswell
・ Goswell Road
・ Goswick
・ Goswick rail crash
・ Goswin


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Gosu (library) : ウィキペディア英語版
Gosu (library)

Gosu is an open source 2D game development library for the Ruby and C++ programming languages, available for Mac OS X, Windows and Linux. The C++ version is also available for iPhone and iPad.
Gosu is known for its ease of use and performance, being one of the preferred libraries on game development timed competitions.〔http://www.ludumdare.com/compo/2007/12/11/another-library-suitable-for-timed-competitions-rubygosu/〕 It comes with extensive documentation.〔http://www.libgosu.org/cpp〕
It is released under the MIT license.
== Features ==
The library offers easy object-oriented interfaces to access common resources:
* Hardware-accelerated 2D graphics and text.
* Sound samples and music in various formats.
* Keyboard, mouse and gamepad input.
The library also offers extensive additional functionality including networking, advanced color operations, mathematical functions, locale operations and more.
As a game development library, it's completely adapted to the classic game structure, featuring separated steps for processing logic, user input, and screen drawing.
Gosu aims to contain everything that is necessary to write a game in clean C++ or Ruby code,〔https://code.google.com/p/gosu/wiki/DesignRationale〕 letting the user forget about low level and boilerplate code. For example, the minimum Ruby code needed to open a blank window consists of merely two lines of code:

require 'gosu'
Gosu::Window.new(640, 480, false).show

the C++ equivalent is nearly identical:

#include
int main()

Furthermore, a simple operation, like loading and drawing an image, that would take up to three different functions and two datatypes on SDL can be easily done with just one class and one of its methods on Gosu.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Gosu (library)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.